home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / rbbs_pc / 172bext.zip / QMXFER.DOC < prev    next >
Text File  |  1987-08-15  |  3KB  |  116 lines

  1. DOC file for QMXFER 1.2
  2.  
  3. Command line parameters :
  4.  
  5.     -C       Check for a Carrier present, abort if not.
  6.     -R       Receive the file
  7.     -S       Send the file
  8.     -F name  File to be send/received
  9.     -L COMx  Use com port COM1 or COM2 (no colon)
  10.     -B baud  Use baud rate (300/1200/2400/4800/9600)
  11.     -P x     Protocol to use :  X = Xmodem
  12.                                 C = CRC Xmodem
  13.                                 I = Imodem
  14.                                 Y = Ymodem & 1K Xmodem
  15.                                 G = Ymodem-G
  16.  
  17.     -N nnn   Node file to show success/fail status msgs.  This file
  18.              has the following format :
  19.                 [FILENAME]
  20.                 [Upload] or [Download]
  21.                 [x = Protocol]   (where x is X/C/I/Y/G)
  22.                 [Success] or [Fail]
  23.                 EOF
  24.              The file will be created in the default directory with the
  25.              name of [XFER-nnn.DEF] where nnn is 1-3 alphanumeric
  26.              characters.
  27.  
  28. The -C and -N parameters are optional.
  29. The -R and -S parameters are mutually exclusive (only one, but not both)
  30.  
  31.  
  32.  
  33. Examples:
  34.  
  35. 1.  Use COM1, 1200 baud, Xmodem, Sending file TESTFILE.TXT
  36.  
  37.     QMXFER -L COM1 -B 1200 -P X -S -F TESTFILE.TXT
  38.  
  39. 2.  Use COM2, 9600 Baud, Ymodem, Receiving file INFILE.DAT
  40.  
  41.     QMXFER -L COM2 -B 9600 -P Y -R -F INFILE.DAT
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48. Many of the RBBS-PC Sysops have requested that you be able to modify the
  49. colors used by QMXFER.  There is now a patch area in the code to change the
  50. colors as you see fit.
  51.  
  52. Directions:
  53.  
  54. First, copy the QMXFER.COM to QMX.COM so you are not working with the
  55. original code.
  56.  
  57. Then enter the following:
  58.  
  59. DEBUG QMX.COM
  60. -D 2D70<cr>
  61. 4420:2D70  08 43 4F 4C 4F 52 53 20-3E 07 01 07 07 01 3C 1A   .COLORS >.....<.
  62. (rest of the lines are not important)
  63.                   .
  64.                   .
  65.                   .
  66.                   .
  67.  
  68. Now, the bytes between the > and < are the colors used by QMXFER.
  69.  
  70. Change them and do a W to save the changes.
  71.  
  72.     Byte1 (2D79)  Window Frame Foreground (0-15)
  73.     Byte2 (2D7A)  Window Frame Background (0-7 )
  74.     Byte3 (2D7B)  Inner Window Highlight  (0-15)
  75.     Byte4 (2D7C)  Inner Window Normal     (0-15)
  76.     Byte5 (2D7D)  Inner Window Background (0-7 )
  77.  
  78.  
  79.  
  80. This is a preliminary DOC file that will get expanded in the final
  81. release.   It is now in release 1.1 and the file has still not been
  82. expanded.  It you need more information on the protocols, please get a
  83. copy of the QMODEM SST 3.0 DOC file.
  84.  
  85. John Friel III
  86. The Forbin Project Inc.
  87. PO BOX 702
  88. Cedar Falls, IA  50613
  89. 319-232-4516 (voice 10am - 6pm)
  90.  
  91.  
  92. Revision History:
  93.  
  94. 1.0 - First Release for RBBS-PC.
  95.  
  96.  
  97. 1.1 - Fixes:
  98.  
  99.       Removed the "Press any key to continue" when it encountered an
  100.       error.  This resulted in hung BBS systems and thats a NO-NO!
  101.  
  102.       Added the Patch area to set colors for the Sysops preferences.
  103.  
  104.  
  105. 1.2 - Fixes:
  106.  
  107.       Fixed a potential problem with filesizes where the code would
  108.       abort on 0 byte files.  There was a potential I/O Error in the
  109.       same block of code that would generate an error at address
  110.       $330A.
  111.  
  112.       Added Errorlevel return codes if the command line is incorrect
  113.       and these can be tested by the DOS ERRORLEVEL command in BATCH
  114.       files.
  115.  
  116.